home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gprof / call_graph.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  346 b   |  13 lines

  1. #ifndef call_graph_h
  2. #define call_graph_h
  3.  
  4. #include <stdio.h>
  5. #include "gprof.h"
  6. #include "symtab.h"
  7.  
  8. extern void cg_tally PARAMS ((bfd_vma from_pc, bfd_vma self_pc, int count));
  9. extern void cg_read_rec PARAMS ((FILE * ifp, const char *filename));
  10. extern void cg_write_arcs PARAMS ((FILE * ofp, const char *filename));
  11.  
  12. #endif /* call_graph_h */
  13.